home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Applications / Argus TE 2.0 / Argus Libraries 2.0 / FnError.r < prev    next >
Encoding:
Text File  |  1995-06-23  |  1.1 KB  |  58 lines  |  [TEXT/KAHL]

  1. /**********************************************************************
  2.  
  3.     FnError.r
  4.  
  5. ***********************************************************************/
  6.  
  7. /* THINK Rez resource format */
  8. #include <Types.r>
  9.  
  10. resource 'DITL' (900, "Error Alert") {
  11.     {    /* array DITLarray: 2 elements */
  12.         /* [1] */
  13.         {59, 288, 79, 348},
  14.         Button {
  15.             enabled,
  16.             "OK"
  17.         },
  18.         /* [2] */
  19.         {10, 75, 54, 343},
  20.         StaticText {
  21.             enabled,
  22.             "^0^1^2^3"
  23.         }
  24.     }
  25. };
  26.  
  27. resource 'ALRT' (900, "Error Alert") {
  28.     {94, 80, 183, 438},
  29.     900,
  30.     {    /* array: 4 elements */
  31.         /* [1] */
  32.         OK, visible, sound1,
  33.         /* [2] */
  34.         OK, visible, sound1,
  35.         /* [3] */
  36.         OK, visible, sound1,
  37.         /* [4] */
  38.         OK, visible, sound1,
  39.     },
  40. };
  41.  
  42. resource 'STR ' (900, "General Error") {
  43.     "Sorry, but a fatal error just occured!"
  44. };
  45.  
  46. resource 'STR ' (901, "System Error") {
  47.     "Sorry, you must have System 7 or later to run this application."
  48. };
  49.  
  50. resource 'STR ' (902, "Resource Error") {
  51.     "Error: Resource could not be found."
  52. };
  53.  
  54. resource 'STR ' (903, "Can't Handle AppleEvent Error") {
  55.     "Error: Could not handle AppleEvent."
  56. };
  57.  
  58. // End of File